home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CRIBBAGE.PAK / README.TXT < prev   
Text File  |  1997-05-06  |  4KB  |  162 lines

  1. Copyright Borland International
  2. ObjectWindows (C) 1995
  3.  
  4. Title: CRIBBAGE Example
  5.  
  6. Keywords: Game;Turbo Cribbage
  7.  
  8. Some terminology:
  9.  
  10.  
  11. [Dealer]
  12.  
  13. The player who dealt the hand
  14.  
  15.  
  16. [Pone]
  17.  
  18. The nondealer
  19.  
  20.  
  21. [Starter]
  22.  
  23. The upturned card on the deck
  24.  
  25.  
  26. [Heels]
  27.  
  28. 2 points for the dealer, if the starter is a jack
  29.  
  30.  
  31. [Nobs]
  32.  
  33. When counting points in the hand, a jack which matches
  34. the suit of the starter is worth 1 point
  35.  
  36. [Crib]
  37.  
  38. A third hand made up of cards discarded from the players hands.
  39. The crib belongs to the dealer.
  40.  
  41.  
  42. [Show points]
  43.  
  44. After the cards have been played, each player in turn
  45. shows their hand and counts the points.  The hands are
  46. counted in strict order: pone, dealer, then dealers crib.
  47.  
  48.  
  49. [Muggins]
  50.  
  51. If a player fails to count all the points in their hand,
  52. the opponent may call "Muggins!" and claim the overlooked
  53. points for themself
  54.  
  55.  
  56. [How to play]
  57.  
  58. Turbo Cribbage implements a 2 handed cribbage game.  The game is played
  59. to 121 points, and because points are accumulated in small amounts, a
  60. pegboard is used to keep track of the scores.  Each round consists of
  61. several phases: the deal, discard, cut for starter, card play, show points.
  62.  
  63.  
  64. The Deal: The deal alternates between players each round.  Dealer deals
  65. six cards to each player.
  66.  
  67.  
  68. Discard:  Each player discards 2 cards into the crib.
  69.  
  70.  
  71. Cut for starter:  Pone cuts the deck, and dealer turns over the top card.
  72. If the starter is a jack, dealer takes 2 points (heels).
  73.  
  74.  
  75. Card play:  Pone plays the first card, and announces its face value (face
  76. cards have a value of 10).  Dealer then plays a card, announcing the total
  77. of the two cards.  Play continues alternately, each player announcing the
  78. running total of the cards, continuing until a player is unable to play
  79. without the sum exceeding 31.  At this point, the player says 'go'.  The
  80. other player must continue to play cards if they can without exceeding
  81. 31.  Then they take 1 or 2 points for the go (1 point if the sum is less
  82. than 31, 2 points if it equals 31).  The count then begins again at zero,
  83. and play continues with the player who called 'go'.  Play continues until
  84. both players are out of cards.  The player who plays the last card takes
  85. 1 point if the sum is less than 31, or 2 if it equals 31.
  86.  
  87.  
  88. Scoring during play:  In addition to points for 'go', the following points
  89. may also be scored:
  90.  
  91.  
  92. Fifteen: If the sum of the cards reaches fifteen, peg 2.
  93.  
  94.  
  95. Pairs: If the card played matches the previous card, peg 2.  If the last 3
  96. cards match, peg 6 (for 3 pair).  If the last 4 cards match, peg 12 (6 pair).
  97.  
  98.  
  99. Runs: If the card played forms a sequence with 2 or more of the previous
  100. cards, peg 1 point for each card in the run.  The run cannot be broken:
  101.  
  102. 3,5,6,2  =  run of 4 cards; 4 points.
  103.  
  104. 3,9,1,2  =  no run; the 9 breaks the run of 1,2, and 3.
  105.  
  106.  
  107. Showing points:
  108.  
  109. After cards have been played, each player shows their hand, and counts
  110. the points.  The starter can be used when counting points in the hand.
  111. Points are scored as follows:
  112.  
  113.    2 points - each pair
  114.  
  115.    2 points - each combination of cards which adds to 15
  116.  
  117.    3 points - each 3 card run
  118.  
  119.    4 points - each 4 card run
  120.  
  121.    5 points - each 5 card run
  122.  
  123.    1 point  - nobs (a jack which matches the suit of the starter)
  124.  
  125.    4 points - a 4 card flush (not using the starter)
  126.  
  127.    5 points - a 5-card flush (using the starter).  A 5-card flush cannot be
  128. counted in the crib.
  129.  
  130.  
  131. It is possible to have multiple runs, for example:
  132.  
  133.    1,2,3,3   :  double 3-card run ( 2*3 + 2 for pair = 8 points )
  134.  
  135.    1,2,2,3,3 :  quadruple 3-card run ( 4*3 + 4 for 2 pairs = 16 points )
  136.  
  137.    1,2,2,2,3 :  triple 3-card run ( 3*3 + 6 for 3 pairs = 15 points )
  138.  
  139.  
  140. If a player overlooks some points, and the opponent notices, they may
  141. call "Muggins!" and claim the missed points.  Be carefull, the computer
  142. is _very_ observant.
  143.  
  144.  
  145. After the hands have been counted, the cards are placed back into the deck,
  146. the deck is shuffled, and the next hand is dealt.
  147.  
  148.  
  149. The game is over when one player reaches 121.  The game ends immediately,
  150. and no other points are counted.  This is why the order of the showing of
  151. hands is important!
  152.  
  153.  
  154. Notes:
  155.  
  156. Turbo Cribbage does not implement a smart computer player.  The computer
  157. simply discards the first 2 cards in its hand, and plays its cards in
  158. order.
  159.  
  160.  
  161.  
  162.